home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HPAVC
/
HPAVC CD-ROM.iso
/
ABUSESRC.ZIP
/
AbuseSrc
/
abuse
/
inc
/
lmenu.hpp
< prev
next >
Wrap
C/C++ Source or Header
|
1996-01-24
|
466b
|
18 lines
#ifndef __LMENU_HPP_
#define __LMENU_HPP_
class lmenu : public ifield
{
public :
int id;
ifield *next;
virtual void area(int &x1, int &y1, int &x2, int &y2, window_manager *wm);
virtual void draw_first(image *screen, window_manager *wm);
virtual void draw(int active, image *screen, window_manager *wm) = 0;
virtual void handle_event(event &ev, image *screen, window_manager *wm) = 0;
virtual char *read() = 0;
} ;
} ;
#endif